From: Stefan Monnier Date: Sat, 18 Mar 2017 16:29:12 +0000 (-0400) Subject: * lisp/obarray.el (obarray-size): Avoid compiler warning. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~21^2~1574 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=cfb5f7e6ac3c8236a97b75fe87de585bd1f45075;p=emacs.git * lisp/obarray.el (obarray-size): Avoid compiler warning. --- diff --git a/lisp/obarray.el b/lisp/obarray.el index a4631859925..b1160ebea43 100644 --- a/lisp/obarray.el +++ b/lisp/obarray.el @@ -37,9 +37,9 @@ (make-vector size 0) (signal 'wrong-type-argument '(size 0))))) -(defun obarray-size (obarray) - "Return the number of slots of OBARRAY." - (length obarray)) +(defun obarray-size (ob) + "Return the number of slots of obarray OB." + (length ob)) (defun obarrayp (object) "Return t if OBJECT is an obarray."